8028c4993689c19cdb63fb8b5a029a0897c2065e,src/main/java/meka/core/SuperLabelUtils.java,SuperLabelUtils,generatePartition,#number#number#Random#boolean#,136

Before Change


		int L = indices.length;

		// shuffle indices
		A.shuffle(indices, r);

		int partition[][] = new int[num][];
		int k = L / num;

After Change



		if (r != null)
			// shuffle indices
			A.shuffle(indices, r);

		int partition[][] = new int[num][];
		int k = L / num;